{
m_charsBuff = new char[length*2 + 1];
}
chars.getChars(0, length, m_charsBuff, 0);
this.characters(m_charsBuff, 0, length);
}
m_charsBuff = new char[len * 2 + 1];
}
if (len > 0) {
chars.getChars(0, len, m_charsBuff, 0);
}
this.characters(m_charsBuff, 0, len);
}